home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / LASTSQ.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-03  |  268 b   |  29 lines

  1. #include  "common.hpp"
  2.  
  3. class LastSquare;
  4.  
  5. class LastSquare
  6. {
  7.     int     row, col;
  8.  
  9.    public :
  10.       LastSquare();
  11.       int isValidSquare (int x, int y);
  12.       void setSquare (int x, int y);
  13.       void reSetSquare ();
  14. } ;
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.